home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / vyzkuste / triky / triky.exe / httrack-3.33.exe / {app} / src / htsinthash.h < prev    next >
C/C++ Source or Header  |  2004-12-11  |  4KB  |  96 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: httrack.c subroutines:                                 */
  34. /*       hash table system (fast index)                         */
  35. /* Author: Xavier Roche                                         */
  36. /* ------------------------------------------------------------ */
  37.  
  38.  
  39.  
  40. #ifndef HTSINTHASH_DEFH
  41. #define HTSINTHASH_DEFH 
  42.  
  43. // inthash -- simple hash table, using a key (char[]) and a value (ulong int)
  44.  
  45. // simple hash table for other routines
  46. typedef struct inthash_chain {
  47.   char* name;                    /* key (name) */
  48.   union {
  49.   unsigned long int intg;        /* integer value */
  50.   void* ptr;                     /* ptr value */
  51.   } value;
  52.   struct inthash_chain* next;    /* next element */
  53. } inthash_chain;
  54.  
  55. // structure behind inthash
  56. typedef void (* t_inthash_freehandler)(void* value);
  57. typedef struct struct_inthash {
  58.   inthash_chain** hash;
  59.   t_inthash_freehandler free_handler;
  60.   unsigned int hash_size;
  61.   unsigned short flag_valueismalloc;
  62. } struct_inthash;
  63.  
  64. // main inthash type
  65. typedef struct_inthash* inthash;
  66.  
  67. /* Library internal definictions */
  68. #ifdef HTS_INTERNAL_BYTECODE
  69. // subfunctions
  70. unsigned long int inthash_key(char* value);
  71. void inthash_init(inthash hashtable);
  72. void inthash_delchain(inthash_chain* hash,t_inthash_freehandler free_handler);
  73. void inthash_default_free_handler(void* value);
  74.  
  75. // main functions:
  76.  
  77. /* Hash functions: */
  78. inthash inthash_new(int size);                                       /* Create a new hash table */
  79. int     inthash_created(inthash hashtable);                          /* Test if the hash table was successfully created */
  80. void    inthash_delete(inthash* hashtable);                          /* Delete an hash table */
  81. void    inthash_value_is_malloc(inthash hashtable,int flag);         /* Is the 'value' member a value that needs to be free()'ed ? */
  82. void    inthash_value_set_free_handler(inthash hashtable,             /* value free() handler (default one is 'free') */
  83.                                     t_inthash_freehandler free_handler);
  84. /* */
  85. int     inthash_read(inthash hashtable,char* name,long int* value);    /* Read entry from the hash table */
  86. int     inthash_readptr(inthash hashtable,char* name,long int* value); /* Same function, but returns 0 upon null ptr */
  87. /* */
  88. void    inthash_add(inthash hashtable,char* name,long int value);    /* Add entry in the hash table */
  89. void*   inthash_addblk(inthash hashtable,char* name,int blksize);    /* Add entry in the hash table and set value to a new memory block */
  90. int     inthash_write(inthash hashtable,char* name,long int value);  /* Overwrite/add entry in the hash table */
  91. int     inthash_inc(inthash hashtable,char* name);                   /* Increment entry in the hash table */
  92. /* End of hash functions: */
  93. #endif
  94.  
  95. #endif
  96.